/***************************************************
Written by: Rushi Rawal
****************************************************/

(Note: Please open this file and make the window full-screen.)
- This file serve as following:

      - Instructions on how to run the code for the project 
      - File Inventory of all the files on this disk. Will be followed by a brief description of what each one of them consist of:    
              

- Instructions on how to run the code for the project:

  ConsumerSite (Application-Client) and the WebSite (Web Service) are Microsoft Visual Studio 2005 projects. They can be edited,
  built and run in MS Visual Studio. 
   
  

- File Inventory with the structure in detail:
  
  -- Code                                     // Folder consisting the whole system code
     
  ------ConsumerSite                          //Folder consisting of Web client code    
  
  ----------App_Data                          // Folder(blank right now) created by Visual Studio as a place holder for the application data
  
  ----------App_WebReferences                 // Folder created by VS for carrying all the web-service references
  
  --------------Service3                      // Folder consisting of references to the current web service  
  
  ------------------Service.disco             // Web Service Discovery file for current web service

  ------------------Service.discomap          // DISCOMAP File
  
  ------------------Service.wsdl              // Web Service Description Language for current web service

  ----------Default2.aspx                     // ASPX file consisting of the web page being loaded by the application

  ----------Default2.aspx.cs                  // CS file consisting of the back-end C# code for application client
     
  ----------Home1.aspx                        // ASPX file

  ----------Web.Config                        // XML configuration file for the application client

  ------WebService                            // Folder consisting of Web Service code

  ----------App_Code                          // Folder consisting of code files used in the service

  --------------CholeskyDecomposition.cs      // C# code file       

  --------------EigenvalueDecomposition.cs    // C# code file

  --------------LuDecomposition.cs            // C# code file      

  --------------Matrix.cs                     // C# code file       
  
  --------------QrDecomposition.cs            // C# code file      

  --------------Service.cs                    // C# code file      

  --------------SingularValueDecomposition.cs // C# code file       

  ----------App_Data                          // Folder consisting of data files used in the service
 
  ----------Bin                               // Folder consisting of dll files used in the service
  
  --------------MySql.Data.dll                // Application extension dynamic link library
 
  --------------MySql.Data.dll.refresh        // Refresh file for the database connection
  
  ----------Service.asmx                      // ASMX File

  ----------Web.Config                        // XML configuration file for the application web service

  ------Database                              // Folder consisting of data collection script code  

Details for the database section could be found in the readme.txt in the Database folder.